Created initial working Docker deployment
This commit is contained in:
6
.dockerignore
Executable file
6
.dockerignore
Executable file
@@ -0,0 +1,6 @@
|
||||
target
|
||||
Dockerfile
|
||||
README.md
|
||||
.git
|
||||
.gitignore
|
||||
.gitmodules
|
||||
9
Dockerfile
Executable file
9
Dockerfile
Executable file
@@ -0,0 +1,9 @@
|
||||
FROM rust:slim
|
||||
|
||||
WORKDIR ~/scryer-prolog
|
||||
COPY . .
|
||||
|
||||
RUN cargo --version
|
||||
RUN cargo install --path .
|
||||
|
||||
CMD ["scryer-prolog"]
|
||||
Reference in New Issue
Block a user