Update to structure

This commit is contained in:
Chris-1010
2025-01-23 12:13:50 +00:00
parent be30d9c924
commit 66957efe6f
38 changed files with 5201 additions and 1 deletions

20
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
# Use the latest LTS version of Node.js
FROM node:18-alpine
# Set the working directory inside the container
WORKDIR /frontend
# Copy package.json and package-lock.json
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy the rest of your application files
COPY . .
# Expose the port your app runs on
EXPOSE 5173
# Define the command to run your app
CMD ["npm", "run", "dev"]