forked from barankyle/xr3ngine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
executable file
·43 lines (34 loc) · 1.62 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# not slim because we need github depedencies
FROM node:16-buster
RUN echo "deb [arch=amd64] http://nginx.org/packages/mainline/ubuntu/ eoan nginx\ndeb-src http://nginx.org/packages/mainline/ubuntu/ eoan nginx" >> /etc/apt/sources.list.d/nginx.list
RUN wget http://nginx.org/keys/nginx_signing.key
RUN apt-key add nginx_signing.key
# ffmpeg 4+ is required
RUN apt update && apt install -y ffmpeg=*:4.** nginx
# Create app directory
WORKDIR /app
RUN npm install -g lerna cross-env rimraf --loglevel notice
# to make use of caching, copy only package files and install dependencies
COPY package.json .
COPY packages/analytics/package.json ./packages/analytics/
COPY packages/client/package.json ./packages/client/
COPY packages/client-core/package.json ./packages/client-core/
COPY packages/common/package.json ./packages/common/
COPY packages/editor/package.json ./packages/editor/
COPY packages/engine/package.json ./packages/engine/
COPY packages/gameserver/package.json ./packages/gameserver/
COPY packages/server/package.json ./packages/server/
COPY packages/server-core/package.json ./packages/server-core/
COPY packages/social/package.json ./packages/social/
COPY packages/gallery/package.json ./packages/gallery/
COPY packages/bot/package.json ./packages/bot/
COPY packages/realitypacks/package.json ./packages/realitypacks/
#RUN npm ci --verbose # we should make lockfile or shrinkwrap then use npm ci for predicatble builds
RUN npm install --production=false --loglevel notice --legacy-peer-deps
COPY . .
# copy then compile the code
RUN npm run build-docker
ENV APP_ENV=production
ENV PORT=3030
EXPOSE 3030
CMD ["scripts/start-server.sh"]