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
6 changes: 5 additions & 1 deletion docker/Dockerfile.back
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
FROM python:3.11-slim
# Docker Official Image, served from AWS's public mirror rather than Docker Hub.
# Identical content, but it keeps the build off Docker Hub entirely: no account,
# and none of Docker Hub's anonymous pull limits, which CI runners share an
# egress address for and can therefore hit without warning.
FROM public.ecr.aws/docker/library/python:3.11-slim

WORKDIR /app

Expand Down
4 changes: 3 additions & 1 deletion docker/Dockerfile.ngrok
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM alpine:latest
# Docker Official Image, served from AWS's public mirror rather than Docker Hub.
# See docker/Dockerfile.back for why.
FROM public.ecr.aws/docker/library/alpine:latest
RUN apk add --no-cache wget unzip && \
wget -O ngrok.zip https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip && \
unzip ngrok.zip && \
Expand Down
Loading