Skip to content

Commit 72e55d4

Browse files
author
Ashley Bailey
committed
chore: 🧽 Fix my dumb mistake
1 parent 03a32f2 commit 72e55d4

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

apps/wizarr-backend/Dockerfile

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,33 +13,21 @@ RUN npm ci
1313
# Build the application using npm
1414
RUN npm run build
1515

16-
# Install essential packages and utilities in the container
17-
RUN apt-get update && \
18-
apt-get install -y \
19-
nginx \
20-
nmap \
21-
toilet \
22-
bash \
23-
figlet \
24-
curl \
25-
tini \
26-
&& apt-get clean
27-
2816
# Set the working directory inside the container
2917
WORKDIR /usr/wizarr/
3018

3119
# Prepare directories for app files
3220
RUN mkdir /usr/wizarr/apps
3321

3422
# Copy shell scripts into the container
35-
RUN mv /usr/src/docker/scripts/*.sh /usr/wizarr
23+
RUN mv /usr/src/docker/scripts/*.sh /usr/wizarr/
3624

3725
# Move the frontend, backend, and libs to appropriate locations in the container
3826
RUN mv /usr/src/dist/apps/wizarr-frontend /usr/wizarr/apps/web
3927
RUN mv /usr/src/dist/apps/wizarr-backend /usr/wizarr/apps/server
4028
RUN mv /usr/src/dist/libs /usr/wizarr/apps/libs
4129
RUN mv /usr/src/modules /usr/wizarr
42-
RUN mv /usr/src/*.json /usr/wizarr
30+
RUN mv /usr/src/*.json /usr/wizarr/
4331

4432
# Copy the custom nginx configuration file into the container
4533
RUN mv /usr/src/docker/nginx-main.conf /etc/nginx/conf.d/wizarr.conf

0 commit comments

Comments
 (0)