Forgot to add COPY app to base Dockerfile

This commit is contained in:
myve 2024-07-24 04:19:55 +00:00
commit d9ecb5a5ad

View file

@ -8,8 +8,13 @@ ARG addpkg
# Build ARG: use "root" for debugging
ARG debug
# Install packages
# Copy mirrorlist
COPY mirrorlist /etc/pacman.d/mirrorlist
# Copy app folder
COPY app /app
# Install packages
RUN --mount=type=cache,sharing=locked,target=/var/cache/pacman \
pacman-key --init \
&& sed -i '/ParallelDownloads/c ParallelDownloads = 10' /etc/pacman.conf \
@ -42,4 +47,4 @@ ENV PS1="[\u@\h \W \$?]\$ "
EXPOSE 6900
# Docker entrypoint
ENTRYPOINT ["/app/entrypoint"]
ENTRYPOINT ["/app/entrypoint"]