mirror of
https://github.com/Clortox/tylerperkins.xyz.git
synced 2025-01-09 11:27:58 +00:00
8 lines
102 B
Docker
8 lines
102 B
Docker
FROM nginx:latest
|
|
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
|
|
COPY ./public /var/www/static
|
|
|
|
RUN nginx -t
|