Moved frontend out of webserver into it's own container
This commit is contained in:
20
frontend/Dockerfile
Normal file
20
frontend/Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user