Skip to content
Snippets Groups Projects
Commit 4d65b59a authored by Florian Raith's avatar Florian Raith
Browse files

Modify Dockerfile

parent cdfff322
No related branches found
No related tags found
No related merge requests found
FRONTEND_URL='http://localhost:5173'
COOKIE_PARSER_SECRET='secret'
JWT_SECRET='secret'
DB_HOST='mysql'
DB_PORT=3306
DB_USER='root'
DB_PASSWORD='12345'
DB_NAME='collab_space'
\ No newline at end of file
FROM node:18
FROM node:20
LABEL maintainer="Florian Raith"
ENV NODE_ENV=development
WORKDIR /usr/src/app/backend
COPY package*.json ./
RUN npm install
RUN npm ci
COPY . .
EXPOSE 5173
\ No newline at end of file
EXPOSE 3000
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment