This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/Dockerfile
2019-11-27 11:24:16 +01:00

13 lines
215 B
Docker

FROM node:lts
RUN npm install -g http-server
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
COPY docker/start.sh /start.sh
RUN chmod uog+rwx /start.sh
EXPOSE 8080
CMD [ "/start.sh"]