File tree Expand file tree Collapse file tree 1 file changed +2
-14
lines changed
Expand file tree Collapse file tree 1 file changed +2
-14
lines changed Original file line number Diff line number Diff line change @@ -13,33 +13,21 @@ RUN npm ci
1313# Build the application using npm
1414RUN 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
2917WORKDIR /usr/wizarr/
3018
3119# Prepare directories for app files
3220RUN 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
3826RUN mv /usr/src/dist/apps/wizarr-frontend /usr/wizarr/apps/web
3927RUN mv /usr/src/dist/apps/wizarr-backend /usr/wizarr/apps/server
4028RUN mv /usr/src/dist/libs /usr/wizarr/apps/libs
4129RUN 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
4533RUN mv /usr/src/docker/nginx-main.conf /etc/nginx/conf.d/wizarr.conf
You can’t perform that action at this time.
0 commit comments