getting-started-app/Dockerfile

9 lines
232 B
Docker
Raw Normal View History

2024-12-10 14:47:50 -05:00
FROM node:18
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install
COPY . .
RUN apt-get update && apt-get install -y python3 build-essential && ln -s /usr/bin/python3 /usr/bin/python
EXPOSE 3000
CMD ["node", "src/index.js"]