traveling-salesman-bangkok/Dockerfile

23 lines
321 B
Text
Raw Normal View History

2025-02-22 21:18:41 +07:00
FROM node:latest
# Install Python, make, and build dependencies
RUN apt-get update && apt-get install -y \
python3 \
python3-pip \
make \
g++ \
libvips-dev \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "start"]