10 lines
189 B
Docker
10 lines
189 B
Docker
FROM nginx:alpine
|
|
|
|
# Copy landing page static files
|
|
COPY ./landing-page /usr/share/nginx/html
|
|
|
|
# Copy custom nginx configuration
|
|
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 80
|