mirror of
https://github.com/leon-ai/leon.git
synced 2024-11-28 12:43:35 +03:00
26 lines
606 B
Docker
26 lines
606 B
Docker
FROM node:14-alpine
|
|
ENV IS_DOCKER true
|
|
WORKDIR /app
|
|
|
|
# Install system packages
|
|
RUN apk add --no-cache --no-progress \
|
|
ca-certificates \
|
|
python3 \
|
|
git \
|
|
tzdata
|
|
|
|
# Upgrade pip and install Pipenv
|
|
RUN pip3 install --no-cache-dir --progress-bar off pipenv
|
|
|
|
# Install Leon
|
|
# Need to explicitly run the npm preinstall and npm posinstall scripts (not needed with npm@7)
|
|
# because npm tries to downgrade its privileges, and these scripts are not executed
|
|
COPY ./package*.json ./
|
|
RUN npm clean-install
|
|
COPY ./ ./
|
|
RUN npm run preinstall
|
|
RUN npm run postinstall
|
|
RUN npm run build
|
|
|
|
CMD ["npm", "start"]
|