File tree Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,6 @@ services:
48
48
- " ${BACKEND_PORT:-8080}:${BACKEND_PORT:-8080}"
49
49
env_file : .env
50
50
environment :
51
- DB_HOST : ${DB_HOST}
52
51
BACKEND_URL : ${BACKEND_URL}
53
52
# to ensure Playwright works in Docker
54
53
PLAYWRIGHT_BROWSERS_PATH : /ms-playwright
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ COPY public ./public
11
11
COPY server ./server
12
12
COPY tsconfig.json ./
13
13
COPY server/tsconfig.json ./server/
14
- COPY .sequelizerc ./
15
14
# COPY server/start.sh ./
16
15
17
16
# Install dependencies
@@ -42,18 +41,11 @@ RUN apt-get update && apt-get install -y \
42
41
libxext6 \
43
42
libxi6 \
44
43
libxtst6 \
45
- postgresql-client \
46
- netcat-openbsd \
47
44
&& rm -rf /var/lib/apt/lists/* \
48
45
&& mkdir -p /tmp/.X11-unix && chmod 1777 /tmp/.X11-unix
49
46
50
- COPY server/docker-entrypoint.sh /app/
51
- RUN chmod +x /app/docker-entrypoint.sh
52
-
53
47
# Expose the backend port
54
48
EXPOSE ${BACKEND_PORT:-8080}
55
49
56
- ENTRYPOINT ["/app/docker-entrypoint.sh" ]
57
-
58
50
# Start the backend using the start script
59
51
CMD ["npm" , "run" , "server" ]
You can’t perform that action at this time.
0 commit comments