mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-03-31 17:55:36 +00:00
10 lines
No EOL
298 B
Docker
10 lines
No EOL
298 B
Docker
# Not used by Github action, but can be used to run test locally:
|
|
# 1. docker build -t aquatic ./path/to/Dockerfile
|
|
# 2. docker run aquatic
|
|
# 3. On failure, run `docker rmi aquatic -f` and go back to step 1
|
|
|
|
FROM rust:bullseye
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |