screenshot-to-code/frontend/Dockerfile
2024-02-23 15:08:55 -05:00

20 lines
406 B
Docker

FROM node:20.9-bullseye-slim
# Set the working directory in the container
WORKDIR /app
# Copy package.json and yarn.lock
COPY package.json yarn.lock /app/
# Install dependencies
RUN yarn install
# Copy the current directory contents into the container at /app
COPY ./ /app/
# Expose port 5173 to access the server
EXPOSE 5173
# Command to run the application
CMD ["yarn", "dev", "--host", "0.0.0.0"]