15 lines
205 B
Docker
15 lines
205 B
Docker
# Use a lightweight server
|
|
FROM nginx:alpine
|
|
|
|
# Set working directory
|
|
WORKDIR /usr/share/nginx/html
|
|
|
|
# Copy all the application files
|
|
COPY . .
|
|
|
|
# Copy the .env file
|
|
COPY .env .
|
|
|
|
# Expose port 80
|
|
EXPOSE 80
|