Skip to content

Commit

Permalink
Fix up Dockerfiles to reflect change to container directory structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Keay committed Sep 11, 2024
1 parent d5a5534 commit 99ceecb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion containers/dnsmasq/Dockerfile.dnsmasq
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN apt-get update && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/*.deb

COPY containers/common/helpers.sh /helpers.sh
COPY containers/dnsmasq/common/helpers.sh /helpers.sh
COPY containers/dnsmasq/entry-point.sh /entry-point.sh
RUN chmod +x /entry-point.sh
COPY containers/dnsmasq/dnsmasq.conf.j2 /etc/dnsmasq.conf.j2
Expand Down
2 changes: 1 addition & 1 deletion containers/obm-utils/Dockerfile.obm_utils
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ARG APP_GROUP=appgroup
ARG APP_USER_UID=1000
ARG APP_GROUP_GID=1000

COPY --chown=${APP_USER}:${APP_GROUP} containers/requirements.txt /app
COPY --chown=${APP_USER}:${APP_GROUP} requirements.txt /app
RUN --mount=type=cache,target=/root/.cache/.pip pip install --no-cache-dir -r /app/requirements.txt

FROM ${BASE} as prod
Expand Down

0 comments on commit 99ceecb

Please sign in to comment.