mirror of
https://git.myvelabs.com/novnc/archlinux.git
synced 2025-12-17 22:56:20 +00:00
Forgot to add COPY app to base Dockerfile
This commit is contained in:
parent
6a29b56a1f
commit
d9ecb5a5ad
1 changed files with 7 additions and 2 deletions
|
|
@ -8,8 +8,13 @@ ARG addpkg
|
||||||
# Build ARG: use "root" for debugging
|
# Build ARG: use "root" for debugging
|
||||||
ARG debug
|
ARG debug
|
||||||
|
|
||||||
# Install packages
|
# Copy mirrorlist
|
||||||
COPY mirrorlist /etc/pacman.d/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 \
|
RUN --mount=type=cache,sharing=locked,target=/var/cache/pacman \
|
||||||
pacman-key --init \
|
pacman-key --init \
|
||||||
&& sed -i '/ParallelDownloads/c ParallelDownloads = 10' /etc/pacman.conf \
|
&& sed -i '/ParallelDownloads/c ParallelDownloads = 10' /etc/pacman.conf \
|
||||||
|
|
@ -42,4 +47,4 @@ ENV PS1="[\u@\h \W \$?]\$ "
|
||||||
EXPOSE 6900
|
EXPOSE 6900
|
||||||
|
|
||||||
# Docker entrypoint
|
# Docker entrypoint
|
||||||
ENTRYPOINT ["/app/entrypoint"]
|
ENTRYPOINT ["/app/entrypoint"]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue