mirror of
https://github.com/Gurkengewuerz/nitro-docker.git
synced 2024-11-23 00:20:52 +01:00
11 lines
272 B
Docker
11 lines
272 B
Docker
|
FROM node:lts-alpine as builder
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
RUN apk add --no-cache git
|
||
|
RUN git clone --recurse-submodules https://github.com/billsonnn/nitro-converter.git .
|
||
|
RUN git checkout -b habbo-room-content
|
||
|
RUN yarn install
|
||
|
RUN yarn build
|
||
|
|
||
|
ENTRYPOINT ["node", "/app/dist/Main.js"]
|