nitro-docker/assets/Dockerfile

13 lines
298 B
Docker
Raw Normal View History

2023-03-13 18:36:30 +01:00
FROM node:lts-alpine as builder
ARG COMMIT=bd86e1f
2023-03-13 18:36:30 +01:00
WORKDIR /app
RUN apk add --no-cache git
RUN git clone --recurse-submodules https://github.com/billsonnn/nitro-converter.git .
RUN git switch -c habbo-room-content $COMMIT
2023-03-13 18:36:30 +01:00
RUN yarn install
RUN yarn build
ENTRYPOINT ["node", "/app/dist/Main.js"]