diff options
| author | Fuwn <[email protected]> | 2021-05-06 16:17:28 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-06 16:17:28 -0700 |
| commit | c5c854361d179045d260b8844be32af8af1e628d (patch) | |
| tree | 40af3e2fa742c075bf2ffe05a90e9ec767f0c8f1 | |
| parent | fix(docker): image creation date (diff) | |
| download | whirl-c5c854361d179045d260b8844be32af8af1e628d.tar.xz whirl-c5c854361d179045d260b8844be32af8af1e628d.zip | |
chore(docker): the need for a dockerfile is no longer
| -rw-r--r-- | Dockerfile | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 70d6ac4..0000000 --- a/Dockerfile +++ /dev/null @@ -1,18 +0,0 @@ -# # NOTICE -# This Dockerfile is *probably* not stable as of 2021. 04. 25. -# -# Can you use it? Yes, but you probably shouldn't. - -FROM rustlang/rust:nightly-slim AS build - -WORKDIR /src/whirl - -COPY . . - -RUN cargo build --release - -FROM ubuntu:18.04 - -COPY --from=build /src/whirl/target/release/whirl /usr/local/bin/whirl - -CMD ["usr/local/bin/whirl", "run"] |