-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1473 from 3scale/sandbox-latest-image
Sandbox latest image
- Loading branch information
Showing
3 changed files
with
5 additions
and
5 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:3.17.3 | ||
FROM alpine:3 | ||
|
||
LABEL summary="Forward proxy based on tinyproxy for development purposes" \ | ||
description="Forward proxy based on tinyproxy for development purposes" \ | ||
|
@@ -7,6 +7,6 @@ LABEL summary="Forward proxy based on tinyproxy for development purposes" \ | |
io.openshift.tags="tinyproxy, proxy" \ | ||
maintainer="[email protected]" | ||
|
||
RUN apk --no-cache add tinyproxy=1.11.1-r2 | ||
RUN apk --no-cache add tinyproxy | ||
ENTRYPOINT ["/usr/bin/tinyproxy"] | ||
CMD ["-d"] |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
clean: | ||
- rm *.crt *.key *.pem *.csr | ||
- rm *.crt *.key *.pem *.csr *.srl | ||
|
||
ca: | ||
openssl genrsa -out rootCA.key 2048 | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:3.17.3 | ||
FROM alpine:3 | ||
|
||
LABEL summary="Forward proxy based on tinyproxy for development purposes" \ | ||
description="Forward proxy based on tinyproxy for development purposes" \ | ||
|
@@ -7,6 +7,6 @@ LABEL summary="Forward proxy based on tinyproxy for development purposes" \ | |
io.openshift.tags="tinyproxy, proxy" \ | ||
maintainer="[email protected]" | ||
|
||
RUN apk --no-cache add tinyproxy=1.11.1-r2 | ||
RUN apk --no-cache add tinyproxy | ||
ENTRYPOINT ["/usr/bin/tinyproxy"] | ||
CMD ["-d"] |