-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathMakefile
More file actions
26 lines (22 loc) · 744 Bytes
/
Makefile
File metadata and controls
26 lines (22 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# This makefile was created for a local Docker build of the moshpit distribution, but the DISTRO variable has been added for ease of use with other distributions that may need to be built locally in the future.
# The EPOCH should be changed to the current 20XX.REL epoch
EPOCH := 2024.10
DISTRO := moshpit
.PHONY: docker docker-workshop
docker:
docker build \
-f Dockerfile.base \
-t quay.io/qiime2/$(DISTRO):$(EPOCH) \
-t quay.io/qiime2/$(DISTRO):latest \
--build-arg EPOCH=$(EPOCH) \
--build-arg DISTRO=$(DISTRO) \
--no-cache \
.
docker-workshop:
docker build \
-f Dockerfile.workshop \
-t quay.io/qiime2/$(DISTRO)-workshop:$(EPOCH) \
--build-arg EPOCH=$(EPOCH) \
--build-arg DISTRO=$(DISTRO) \
--no-cache \
.