19 lines
245 B
Docker
19 lines
245 B
Docker
|
|
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
|
||
|
|
|