Remove Dockerfile and Makefile as they are no longer necessary

This commit is contained in:
Elara 2023-02-12 00:38:49 -08:00
parent e91ebbea15
commit f86d86716e
2 changed files with 0 additions and 16 deletions

View File

@ -1,2 +0,0 @@
FROM nginx
COPY ./public /usr/share/nginx/html

View File

@ -1,14 +0,0 @@
all: site docker
site:
hugo
docker: site
docker buildx build --platform linux/amd64 --tag arsen6331/site:amd64 .
docker buildx build --platform linux/arm64/v8 --tag arsen6331/site:arm64 .
docker push arsen6331/site -a
-docker manifest rm arsen6331/site:latest
docker manifest create arsen6331/site:latest --amend arsen6331/site:arm64 --amend arsen6331/site:amd64
docker manifest push arsen6331/site:latest
.PHONY: docker site