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-01 17:41:14 +02:00

10 lines
160 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/