This repository has been archived on 2019-10-13. You can view files and clone it, but cannot push or open issues or pull requests.
basta-frontend/basta/Dockerfile
2018-04-03 12:57:37 +02:00

13 lines
234 B
Docker

FROM node:8 as build
COPY . /app
WORKDIR /app
RUN npm install && npm run build
# FROM httpd:2.4-alpine
# COPY --from=build /app/dist/ /usr/local/apache2/htdocs/
FROM nginx:alpine
COPY --from=build /app/dist/ /usr/share/nginx/html