1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/docker_sample
2020-09-12 16:49:45 +01:00
..
src v3 examples (#364) 2020-09-12 16:49:45 +01:00
Cargo.toml v3 examples (#364) 2020-09-12 16:49:45 +01:00
Dockerfile update docker sample by caching dependencies 2020-05-27 22:01:26 +02:00
README.MD update docker sample by caching dependencies 2020-05-27 22:01:26 +02:00

Docker sample

Build image

docker build -t docker_sample .

Run built image

docker run -d -p 5000:5000 docker_sample
# and the server should start instantly
curl http://localhost:5000

Running unit tests

docker build -t docker_sample:test --target base .
docker run --rm docker_sample:test