4 lines
74 B
Docker
4 lines
74 B
Docker
|
# Dockerfile
|
||
|
FROM nginx:alpine
|
||
|
COPY dist/ /usr/share/nginx/html/
|
||
|
EXPOSE 80
|