deployment-engine/Dockerfile

19 lines
245 B
Docker
Raw Normal View History

2023-03-09 07:51:34 -05:00
FROM archlinux:latest
RUN pacman -Syu --noconfirm
RUN pacman -S --noconfirm nodejs npm
RUN node --version
RUN npm --version
RUN npm install -g npm yarn
WORKDIR /app
COPY . /app
RUN yarn
RUN yarn tsc
EXPOSE 52310
CMD node /app/dist/main.js