Skip to content

Commit 9ec25c2

Browse files
committed
update dockerfile example
1 parent 61f0a42 commit 9ec25c2

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

Dockerfile.example

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ FROM node:lts-alpine as prod-runner
2323
# Set work directory
2424
WORKDIR /app
2525

26-
ENV BOT_TOKEN=YOUR_BOT_TOKEN
26+
ENV BOT_TOKEN=
27+
ENV WELCOME_CHANNEL=
28+
ENV ADMIN_CHANNEL=
2729

2830
# Copy package.json from build-runner
2931
COPY --from=build-runner /tmp/app/package.json /app/package.json
@@ -35,4 +37,4 @@ RUN npm install --only=production
3537
COPY --from=build-runner /tmp/app/build /app/build
3638

3739
# Start bot
38-
CMD [ "npm", "start" ]
40+
CMD [ "npm", "start" ]

0 commit comments

Comments
 (0)