8 lines
82 B
Docker
8 lines
82 B
Docker
FROM nginx:alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./dist/* /usr/share/nginx/html
|
|
|
|
EXPOSE 3000
|