This repository has been archived on 2021-12-31. You can view files and clone it, but cannot push or open issues or pull requests.
beta.coopcloud.tech/Dockerfile

12 lines
113 B
Docker

FROM node:16-bullseye-slim
WORKDIR src
COPY . /src/
RUN npm install
EXPOSE 1313
CMD ["npm", "run", "start"]