-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathMakefile
More file actions
17 lines (15 loc) · 775 Bytes
/
Makefile
File metadata and controls
17 lines (15 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
### Instructions ###
#
#To get the new exercises run set-template (needed only once) to set the template repository as a remote
#and then "make update" every time you want to update the exercises.
# Note that since your personal repository and the template have not a common git history,
# this is a dangerous operation that might result in overwrite of local changes and/or conflicts.
set-template:
git remote add template git@github.com:PDM4AR/exercises.git
update:
git pull -X theirs template master --allow-unrelated-histories
# Command to update the base image on top of which the devcontainer is built.
# Note that this needs to be run from outside the devcontainer.
CURRENT_BASE = pdm4ar2025:3.11-bullseye
update-base-image:
docker pull idscfrazz/$(CURRENT_BASE)