1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-09-19 05:47:17 +03:00
leon/Dockerfile
2019-02-23 21:27:28 +08:00

28 lines
576 B
Docker

FROM node:10-alpine
WORKDIR /app
COPY . .
# Install system packages
RUN apk update --no-cache \
&& apk add --no-cache \
ca-certificates \
build-base \
python3 \
git \
tzdata
# Upgrade pip and install Pipenv
RUN pip3 install --upgrade pip \
&& pip install pipenv
# Install Leon
# Need to explicitly run the npm preinstall and npm posinstall scripts
# because npm tries to downgrade its privileges, and these scripts are not executed
RUN npm run preinstall
RUN npm install
RUN npm run postinstall
RUN npm run build
# Let's run it
CMD ["npm", "start"]