9 lines
108 B
Docker
9 lines
108 B
Docker
|
FROM nginx:alpine
|
||
|
|
||
|
RUN mkdir -p /app/
|
||
|
COPY ./dist /app/
|
||
|
COPY ./nginx.conf /etc/nginx/nginx.conf
|
||
|
|
||
|
|
||
|
EXPOSE 80
|