-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ RUN grep " node-v{{ nodejs_canonical }}-linux-x64-musl.tar.xz\$" SHASUMS256.txt | |
RUN tar -xf "node-v{{ nodejs_canonical }}-linux-x64-musl.tar.xz" | ||
|
||
FROM python:{{ python_image }} | ||
MAINTAINER Nikolai R Kristiansen <[email protected]> | ||
LABEL org.opencontainers.image.authors="Nikolai R Kristiansen <[email protected]>" | ||
|
||
RUN addgroup -g 1000 pn && adduser -u 1000 -G pn -s /bin/sh -D pn | ||
RUN apk add libstdc++ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# python: {{ python_canonical }} | ||
# nodejs: {{ nodejs_canonical }} | ||
FROM python:{{ python_image }} | ||
MAINTAINER Nikolai R Kristiansen <[email protected]> | ||
LABEL org.opencontainers.image.authors="Nikolai R Kristiansen <[email protected]>" | ||
|
||
RUN groupadd --gid 1000 pn && useradd --uid 1000 --gid pn --shell /bin/bash --create-home pn | ||
ENV POETRY_HOME=/usr/local | ||
|