refactor(docker): add TODOs and documentation

This commit is contained in:
Sarah Vaupel 2024-08-11 03:09:55 +02:00
parent e5f1827199
commit 78303898f2
2 changed files with 9 additions and 0 deletions

View File

@ -4,16 +4,20 @@ db ?= -cf
help: help:
@echo "Nothing to see here, go away" @echo "Nothing to see here, go away"
# TODO: dockerify
.PHONY: build .PHONY: build
build: frontend-build backend-build build: frontend-build backend-build
# TODO: dockerify
#.PHONY: start #.PHONY: start
#start: frontend-build #start: frontend-build
# $(MAKE) --jobs=2 frontend-watch backend-start # $(MAKE) --jobs=2 frontend-watch backend-start
# TODO: dockerify
.PHONY: lint .PHONY: lint
lint: frontend-lint backend-lint lint: frontend-lint backend-lint
# TODO: dockerify
.PHONY: test .PHONY: test
test: frontend-test backend-test i18n-check test: frontend-test backend-test i18n-check

View File

@ -1,3 +1,8 @@
# When making changes to and/or building fradrive-env locally,
# please remember to use the full url below as tag for the
# local image to ensure that the local instead of the upstream
# image will be used!
# TODO: switch to pinned versions instead of latest!
FROM registry.uniworx.de/fradrive/fradrive/fradrive-env:latest FROM registry.uniworx.de/fradrive/fradrive/fradrive-env:latest
USER root USER root