diff --git a/013-random choice picker/Dockerfile b/013-random choice picker/Dockerfile new file mode 100644 index 0000000..436ad09 --- /dev/null +++ b/013-random choice picker/Dockerfile @@ -0,0 +1,15 @@ +#e the official NGINX image as the base image +FROM nginx:alpine + +# Set the working directory to /usr/share/nginx/html +WORKDIR /usr/share/nginx/html + +# Copy the current directory contents into the container +COPY . . + + +# Expose the port defined by the PORT environment variable +EXPOSE 8080 + +# Start NGINX +CMD ["nginx", "-g", "daemon off;"] diff --git a/045-netflix mobile navigation/Dockerfile b/045-netflix mobile navigation/Dockerfile new file mode 100644 index 0000000..436ad09 --- /dev/null +++ b/045-netflix mobile navigation/Dockerfile @@ -0,0 +1,15 @@ +#e the official NGINX image as the base image +FROM nginx:alpine + +# Set the working directory to /usr/share/nginx/html +WORKDIR /usr/share/nginx/html + +# Copy the current directory contents into the container +COPY . . + + +# Expose the port defined by the PORT environment variable +EXPOSE 8080 + +# Start NGINX +CMD ["nginx", "-g", "daemon off;"]