9 lines
143 B
Plaintext
9 lines
143 B
Plaintext
FROM nginx:stable-alpine
|
|
|
|
COPY packages/app/dist/apps/ /apps/
|
|
COPY docker/system-frontend/nginx/*.conf /apps/nginxs/
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx"]
|