Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

353 - Update apt-get on dockerfiles #5106

Closed
wants to merge 1 commit into from
Closed
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 apps/forms-flow-ai/forms-flow-bpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Maven build
FROM artifacts.developer.gov.bc.ca/docker-remote/maven:3.6.1-jdk-11-slim AS MAVEN_TOOL_CHAIN

RUN apt-get update \
RUN set -eux; apt-get update; apt-get install -y --no-install-recommends \
&& apt-get install -y git

RUN git clone -b ${FORMIO_SOURCE_REPO_BRANCH} ${FORMIO_SOURCE_REPO_URL} /bpm/
Expand Down
1 change: 1 addition & 0 deletions notification-manager/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# Necessary to pull images from bcgov and not hit Dockerhub quotas.
FROM artifacts.developer.gov.bc.ca/docker-remote/python:3.8.5-buster
EXPOSE 6402
RUN apt-get update && apt-get install -y --no-install-recommends

# Keeps Python from generating .pyc files in the container
ENV PYTHONDONTWRITEBYTECODE=1
Expand Down
1 change: 1 addition & 0 deletions openshift/templates/backup/copy-to-s3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# Necessary to pull images from bcgov and not hit Dockerhub quotas.
FROM artifacts.developer.gov.bc.ca/docker-remote/python:3.8.5-buster
EXPOSE 6402
RUN apt-get update && apt-get install -y --no-install-recommends

# Keeps Python from generating .pyc files in the container
ENV PYTHONDONTWRITEBYTECODE=1
Expand Down
1 change: 1 addition & 0 deletions request-management-api/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# Necessary to pull images from bcgov and not hit Dockerhub quotas.
FROM artifacts.developer.gov.bc.ca/docker-remote/python:3.10.8-buster
EXPOSE 6402
RUN set -eux; apt-get update; apt-get install -y --no-install-recommends

# Keeps Python from generating .pyc files in the container
ENV PYTHONDONTWRITEBYTECODE=1
Expand Down
Loading