Skip to content
This repository was archived by the owner on Jul 20, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/templates/node/Dockerfile.template
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM node:12.18-alpine
ENV NODE_ENV production
ENV NODE_ENV=production
WORKDIR /usr/src/app
COPY ["package.json", "package-lock.json*", "npm-shrinkwrap.json*", "./"]
RUN npm install --production --silent && mv node_modules ../
Expand Down
4 changes: 2 additions & 2 deletions resources/templates/python/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ EXPOSE {{ . }}

{{/if}}
# Keeps Python from generating .pyc files in the container
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONDONTWRITEBYTECODE=1

# Turns off buffering for easier container logging
ENV PYTHONUNBUFFERED 1
ENV PYTHONUNBUFFERED=1

# Install pip requirements
ADD requirements.txt .
Expand Down