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

14 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"]