chessGame / frontend /dockerfile
ilhamdev's picture
Upload folder using huggingface_hub
ece5841 verified
raw
history blame
270 Bytes
# Dockerfile for React client
# Build react client
FROM node
# Working directory be app
WORKDIR /usr/src/app
COPY package*.json ./
### Installing dependencies
RUN npm install --silent
# copy local files to app folder
COPY . .
EXPOSE 5173
CMD ["npm","run","dev"]