Skip to content
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 docs/containers/debug-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ The solution is to remove that optimization from the `Dockerfile`:

```dockerfile
FROM node:10.13-alpine
ENV NODE_ENV production
ENV NODE_ENV=production
WORKDIR /usr/src/app
COPY ["package.json", "package-lock.json*", "npm-shrinkwrap.json*", "./"]
# Remove the `&& mv node_modules ../` from the RUN command:
Expand Down
8 changes: 4 additions & 4 deletions docs/python/tutorial-create-containers.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ The following steps summarize the configuration used in the [python-sample-vscod
EXPOSE 5000

# Indicate where uwsgi.ini lives
ENV UWSGI_INI uwsgi.ini
ENV UWSGI_INI=uwsgi.ini

# Tell nginx where static files live.
ENV STATIC_URL /hello_app/static
ENV STATIC_URL=/hello_app/static

# Set the folder where uwsgi looks for the app
WORKDIR /hello_app
Expand Down Expand Up @@ -187,11 +187,11 @@ The following steps summarize the configuration used in the [python-sample-vscod
EXPOSE 8000

# Indicate where uwsgi.ini lives
ENV UWSGI_INI uwsgi.ini
ENV UWSGI_INI=uwsgi.ini

# Tell nginx where static files live (as typically collected using Django's
# collectstatic command.
ENV STATIC_URL /app/static_collected
ENV STATIC_URL=/app/static_collected

# Copy the app files to a folder and run it from there
WORKDIR /app
Expand Down