iris-messenger/Dockerfile.dev

13 lines
196 B
Docker
Raw Permalink Normal View History

2023-06-09 11:01:05 +00:00
FROM node:19-buster-slim
WORKDIR /iris-messenger/
RUN apt-get update && apt-get install -y python3 build-essential
COPY package.json .
COPY yarn.lock .
RUN yarn
COPY . .
2023-06-09 11:04:57 +00:00
CMD [ "yarn", "dev" ]