Skip to content

Commit

Permalink
fix: shut coderabbitai up
Browse files Browse the repository at this point in the history
  • Loading branch information
PFC-developer committed Dec 7, 2024
1 parent f221e21 commit 2db7ce3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/.idea
/.node_modules
#/.node_modules
/node_modules
/.gitignore
10 changes: 7 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ FROM node:alpine

WORKDIR /usr/rapid-relayer
COPY package.json .
RUN npm install\
&& npm install typescript -g
RUN npm install
# && npm install typescript -g
COPY . .
#RUN tsc

Expand All @@ -12,9 +12,13 @@ LABEL org.opencontainers.image.description="Initia Labs Rapid Relayer"
ENV CONFIGFILE=/config/config.json
ENV SYNC_INFO=/syncInfo/syncInfo

# main port
EXPOSE 7010
# metrics port
EXPOSE 7011
ENV MNEMONIC="your seed goes here"

# MNEMONIC must be provided at runtime (if your config uses it)
ENV MNEMONIC=""

VOLUME /config
VOLUME /syncInfo
Expand Down

0 comments on commit 2db7ce3

Please sign in to comment.