mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
Quote of @appinteractive: ``` Currently we are running nodemon on production which watches for filechanges and consumes much more memory then just node. As nodemon is only for development, I added a build step to compile the application for production and then only run the dist folder with pure node. ```
21 lines
542 B
Docker
21 lines
542 B
Docker
FROM node:10-alpine
|
|
LABEL Description="Backend of the Social Network Human-Connection.org" Vendor="Human Connection gGmbH" Version="0.0.1" Maintainer="Human Connection gGmbH (developer@human-connection.org)"
|
|
|
|
# Expose the app port
|
|
EXPOSE 4000
|
|
|
|
ARG WORKDIR=/nitro-backend
|
|
RUN mkdir -p $WORKDIR
|
|
WORKDIR $WORKDIR
|
|
|
|
# Install the Application Dependencies
|
|
COPY package.json .
|
|
COPY yarn.lock .
|
|
RUN yarn install --production=false --frozen-lockfile --non-interactive
|
|
|
|
COPY . .
|
|
COPY .env.template .env
|
|
|
|
RUN yarn run build
|
|
CMD ["yarn", "run", "start"]
|