Skip to content

Commit 8eca6c9

Browse files
committed
feat: Use correct dockerfile env variables
1 parent 64b17c3 commit 8eca6c9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM node:22-slim
22

3-
ENV NODE_ENV production
3+
ENV NODE_ENV=production
44
LABEL org.opencontainers.image.authors="Timo Kössler <info@timokoessler.de>"
55
LABEL org.opencontainers.image.title="Docker Deploy API"
66
LABEL org.opencontainers.image.description="An easy-to-use API for deploying Docker containers"
@@ -10,8 +10,8 @@ RUN echo "#!/bin/sh\nnode cli.js \$@" > /usr/local/bin/cli && \
1010

1111
USER node
1212
WORKDIR /home/node
13-
ENV NODE_ENV production
14-
ENV IS_DOCKER true
13+
ENV NODE_ENV=production
14+
ENV IS_DOCKER=true
1515

1616
COPY --chown=node:node ./dist/ ./
1717

0 commit comments

Comments
 (0)