Skip to content

Commit 37f260a

Browse files
authored
Create Dockerfile
1 parent 1c11fd5 commit 37f260a

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

013-random choice picker/Dockerfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#e the official NGINX image as the base image
2+
FROM nginx:alpine
3+
4+
# Set the working directory to /usr/share/nginx/html
5+
WORKDIR /usr/share/nginx/html
6+
7+
# Copy the current directory contents into the container
8+
COPY . .
9+
10+
11+
# Expose the port defined by the PORT environment variable
12+
EXPOSE 8080
13+
14+
# Start NGINX
15+
CMD ["nginx", "-g", "daemon off;"]

0 commit comments

Comments
 (0)