Skip to content

Commit

Permalink
add changes from #6063
Browse files Browse the repository at this point in the history
  • Loading branch information
fengtality committed Feb 6, 2023
1 parent 2b0050e commit a2f40e0
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM node:18.10.0

# Set labels
LABEL application="gateway-v2"
LABEL application="gateway"
LABEL branch=${BRANCH}
LABEL commit=${COMMIT}
LABEL date=${BUILD_DATE}
Expand All @@ -23,6 +23,14 @@ RUN apt-get update && \
# app directory
WORKDIR /usr/src/app

# copy pwd file to container
COPY . .

# create sym links
RUN ln -s /conf /usr/src/app/conf && \
ln -s /logs /usr/src/app/logs && \
ln -s /certs /usr/src/app/certs

# create app writable directory for db files
RUN mkdir /var/lib/gateway
RUN chown -R hummingbot /var/lib/gateway
Expand Down

0 comments on commit a2f40e0

Please sign in to comment.