mirror of
https://github.com/fergalmoran/retns-frontend.git
synced 2025-12-22 09:29:46 +00:00
9 lines
118 B
Docker
9 lines
118 B
Docker
FROM nginx:alpine
|
|
|
|
COPY nginx/conf.d /etc/nginx/nginx.conf
|
|
|
|
WORKDIR /usr/share/nginx/html
|
|
COPY dist/app/ .
|
|
|
|
EXPOSE 80
|