backend without proxy
This commit is contained in:
8
Dockerfile
Normal file
8
Dockerfile
Normal file
@@ -0,0 +1,8 @@
|
||||
FROM node:22-bullseye
|
||||
ARG APP_PORT
|
||||
ENV APP_PORT $APP_PORT
|
||||
COPY . .
|
||||
RUN npm i
|
||||
|
||||
EXPOSE $APP_PORT
|
||||
ENTRYPOINT ["node", "./src/index.js"]
|
||||
Reference in New Issue
Block a user