chore(workflow): fix dockerignore to include all workspace packages

This commit is contained in:
Mo
2022-06-23 09:12:20 -05:00
parent 020e0f8543
commit 0d62472019
20 changed files with 63 additions and 58 deletions

View File

@@ -14,13 +14,13 @@ RUN apk add --update --no-cache \
RUN addgroup -S $USERNAME -g $GID && adduser -D -S $USERNAME -G $USERNAME -u $UID
WORKDIR /app/
WORKDIR /app
RUN chown -R $UID:$GID .
USER $USERNAME
COPY --chown=$UID:$GID . /app
COPY --chown=$UID:$GID . .
RUN yarn install