iris-messenger/Dockerfile.dev

14 lines
246 B
Docker
Raw Normal View History

FROM node:19-buster-slim
WORKDIR /iris-messenger/
ENV NODE_OPTIONS=--openssl-legacy-provider
2023-03-15 08:46:11 +00:00
RUN apt-get update && apt-get install -y python3 build-essential
COPY package.json .
COPY yarn.lock .
RUN yarn
COPY . .
CMD [ "yarn", "dev-docker" ]