Compare commits

..

2 Commits

Author SHA1 Message Date
joeac ddc416a45a Makefile: build_$(module) depends on $(module).Dockerfile 2026-06-22 22:56:20 +01:00
joeac c07f55e8d4 move smtp/Dockerfile to smtp.Dockerfile 2026-06-22 22:55:34 +01:00
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ container_image_name = $(REGISTRY_DOMAIN)/$(REGISTRY_USER)/joeac.net-$(module)
define build_module_rule =
.PHONY: build_$(module)
build_$(module): make_$(module)
build_$(module): make_$(module) $(module).Dockerfile
sudo podman-compose build $(module)
endef
+2 -1
View File
@@ -20,7 +20,8 @@ services:
smtp:
image: git.joeac.net/joeac/joeac.net-smtp
build:
context: smtp
context: .
dockerfile: smtp.Dockerfile
args:
LOCAL_SMTP_PORT: 2500
env_file:
+1 -1
View File
@@ -1,4 +1,4 @@
FROM git.joeac.net/joeac/armv7/msmtp:1.8.32-alpine3.23
ARG LOCAL_SMTP_PORT
EXPOSE $LOCAL_SMTP_PORT
COPY .msmtprc ./
COPY smtp/.msmtprc ./