Skip to content

Commit

Permalink
Fix COPY commands in Dockerfile to copy ./lauth dir
Browse files Browse the repository at this point in the history
  • Loading branch information
antmoth committed Nov 7, 2023
1 parent d2fb084 commit 6b214ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lauth/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ RUN --mount=type=cache,sharing=locked,target=/gemcache \
#############
FROM gems AS production

COPY . .
COPY ./lauth .
RUN chown -R ${UID}:${GID} /gems && chown -R ${UID}:${GID} /lauth/lauth

ENV HANAMI_ENV=production
Expand All @@ -96,7 +96,7 @@ CMD ["bin/puma"]
############
FROM dev-gems AS development

COPY . .
COPY ./lauth .
RUN chown -R ${UID}:${GID} /gems && chown -R ${UID}:${GID} /lauth/lauth

EXPOSE 2300
Expand Down

0 comments on commit 6b214ff

Please sign in to comment.