This repository contains a simple application with a backend and a frontend.
-
backend/: Contains the Go application.
main.go: The Go source code.Dockerfile: Instructions to build the Go application container.
-
frontend/: Contains the frontend assets.
index.html: A simple HTML file.Dockerfile: Instructions to build the Nginx container serving the HTML.
You can build the docker images using:
# Backend
cd backend
podman build -t sample-backend .
# Frontend
cd frontend
podman build -t sample-frontend .