Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
cars10 committed Mar 12, 2021
2 parents 54c56b4 + 1e7d182 commit 1308291
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.2.0

* Improve `Dockerfile` to reduce image size

## 0.1.0

Intial release
9 changes: 8 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,12 @@ RUN apt-get update && \
WORKDIR /usr/src/myapp
COPY . .

RUN cargo install --path .
RUN cargo build --release --locked


FROM debian:buster-slim
RUN apt-get update && \
apt-get install -y libssl-dev && \
rm -rf /var/lib/apt/lists/*
COPY --from=builder /usr/src/myapp/target/release/simprox /usr/local/bin/simprox
CMD ["simprox"]
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# simprox

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

| **Sim**ple **Prox**y Server

Simprox is a simple and easy-to-use local proxy server.
Simprox is a fast and simple local proxy server.

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

### Binary

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

### Docker

Expand Down

0 comments on commit 1308291

Please sign in to comment.