Skip to content

Commit 1308291

Browse files
committed
Merge branch 'develop'
2 parents 54c56b4 + 1e7d182 commit 1308291

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.2.0
4+
5+
* Improve `Dockerfile` to reduce image size
6+
37
## 0.1.0
48

59
Intial release

Dockerfile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,12 @@ RUN apt-get update && \
1111
WORKDIR /usr/src/myapp
1212
COPY . .
1313

14-
RUN cargo install --path .
14+
RUN cargo build --release --locked
15+
16+
17+
FROM debian:buster-slim
18+
RUN apt-get update && \
19+
apt-get install -y libssl-dev && \
20+
rm -rf /var/lib/apt/lists/*
21+
COPY --from=builder /usr/src/myapp/target/release/simprox /usr/local/bin/simprox
1522
CMD ["simprox"]

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# simprox
22

3-
[![Docker build](https://img.shields.io/docker/automated/cars10/simprox)](https://hub.docker.com/r/cars10/simprox)
3+
[![Build release](https://github.com/cars10/simprox/actions/workflows/build.yml/badge.svg)](https://github.com/cars10/simprox/actions/workflows/build.yml)
4+
[![Docker build](https://img.shields.io/docker/cloud/automated/cars10/simprox.svg)](https://hub.docker.com/r/cars10/simprox)
45

56
| **Sim**ple **Prox**y Server
67

7-
Simprox is a simple and easy-to-use local proxy server.
8+
Simprox is a fast and simple local proxy server.
89

910
You can use it to bypass browser restrictions like CORS or invalid SSL certificates when working with external services in your browser.
1011
It forwards the complete original request to your proxy target and returns the response to your service.
@@ -14,7 +15,7 @@ It forwards the complete original request to your proxy target and returns the r
1415

1516
### Binary
1617

17-
You can download the latest binary from [github](https://github.com/cars10/simprox/releases).
18+
You can download the latest binary for linux, macos and windows from [github](https://github.com/cars10/simprox/releases).
1819

1920
### Docker
2021

0 commit comments

Comments
 (0)