Przemek Grondek
9e3f9d9a7a
Co-authored-by: Przemek Grondek <przemek@grondek.pl> Co-committed-by: Przemek Grondek <przemek@grondek.pl>
9 lines
173 B
Docker
9 lines
173 B
Docker
FROM nginx:1.24.0-alpine
|
|
|
|
ENV NODE_ENV production
|
|
|
|
RUN rm -rf /usr/share/nginx/html/*
|
|
|
|
COPY out /usr/share/nginx/html/
|
|
COPY docker/nginx.conf /etc/nginx/conf.d/default.conf
|