Added Docker build files
This commit is contained in:
parent
f69e489f28
commit
b49a01ab03
3 changed files with 33 additions and 0 deletions
10
Makefile
10
Makefile
|
|
@ -1,3 +1,8 @@
|
|||
IMAGE := rust_api:latest
|
||||
|
||||
shell := /bin/bash
|
||||
|
||||
|
||||
all: debug
|
||||
.PHONY: all
|
||||
|
||||
|
|
@ -10,7 +15,12 @@ release:
|
|||
@ cargo build --release
|
||||
.PHONY: release
|
||||
|
||||
image: Dockerfile
|
||||
@ DOCKER_BUILDKIT=1 docker build -t '$(IMAGE)' .
|
||||
.PHONY: image
|
||||
|
||||
|
||||
# Run
|
||||
run:
|
||||
@ cargo run
|
||||
|
||||
|
|
|
|||
Reference in a new issue