1
0
Fork 0
mirror of synced 2024-07-05 14:31:17 +12:00

Copy dist to dist

This commit is contained in:
Adria Navarro 2023-05-19 18:30:48 +02:00
parent c7bbd9be2f
commit 040d5f2dcb
2 changed files with 4 additions and 4 deletions

View file

@ -5,7 +5,7 @@ LABEL com.centurylinklabs.watchtower.lifecycle.pre-update="scripts/watchtower-ho
LABEL com.centurylinklabs.watchtower.lifecycle.post-update="scripts/watchtower-hooks/post-update.sh"
LABEL com.centurylinklabs.watchtower.lifecycle.post-check="scripts/watchtower-hooks/post-check.sh"
WORKDIR /app/dist
WORKDIR /app
ENV PORT=4001
ENV COUCH_DB_URL=https://couchdb.budi.live:5984
@ -32,7 +32,7 @@ RUN yarn \
RUN apt-get remove -y --purge --auto-remove g++ make python \
&& rm -rf /tmp/* /root/.node-gyp /usr/local/lib/node_modules/npm/node_modules/node-gyp
COPY dist/ .
COPY dist/ dist/
COPY docker_run.sh .
COPY builder/ builder/
COPY client/ client/

View file

@ -5,7 +5,7 @@ LABEL com.centurylinklabs.watchtower.lifecycle.pre-update="scripts/watchtower-ho
LABEL com.centurylinklabs.watchtower.lifecycle.post-update="scripts/watchtower-hooks/post-update.sh"
LABEL com.centurylinklabs.watchtower.lifecycle.post-check="scripts/watchtower-hooks/post-check.sh"
WORKDIR /app/dist
WORKDIR /app
# handle node-gyp
RUN apk add --no-cache --virtual .gyp python3 make g++
@ -17,7 +17,7 @@ RUN yarn
RUN apk del .gyp \
&& yarn cache clean
COPY dist/ .
COPY dist/ dist/
EXPOSE 4001