File tree Expand file tree Collapse file tree 3 files changed +16
-4
lines changed
Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.2.0
4+
5+ * Improve ` Dockerfile ` to reduce image size
6+
37## 0.1.0
48
59Intial release
Original file line number Diff line number Diff line change @@ -11,5 +11,12 @@ RUN apt-get update && \
1111WORKDIR /usr/src/myapp
1212COPY . .
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
1522CMD ["simprox" ]
Original file line number Diff line number Diff line change 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
910You can use it to bypass browser restrictions like CORS or invalid SSL certificates when working with external services in your browser.
1011It 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
You can’t perform that action at this time.
0 commit comments