-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathMakefile
More file actions
24 lines (20 loc) · 706 Bytes
/
Makefile
File metadata and controls
24 lines (20 loc) · 706 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
.PHONY: clean docker
all: clean techio.yml
clean:
@rm techio.yml
docker:
docker build -t computingwithdata/bash projects/sh
docker push computingwithdata/bash
docker build -t computingwithdata/cpp projects/cpp
docker push computingwithdata/cpp
docker build -t computingwithdata/java projects/java
docker push computingwithdata/java
docker build -t computingwithdata/powershell projects/ps1
docker push computingwithdata/powershell
docker build -t computingwithdata/python projects/py
docker push computingwithdata/python
docker build -t computingwithdata/r-base projects/R
docker push computingwithdata/r-base
techio.yml:
@./generate-playground-config > techio.yml
@./import-inline-code