Docker image first version

This commit is contained in:
2025-12-26 22:03:49 -05:00
parent 56f22bb472
commit 99e437b42b
4 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
FROM fes:latest
COPY . /app
WORKDIR /app
CMD ["fes", "run", "/app"]

View File

@@ -0,0 +1,5 @@
[app]
name = "hello"
version = "0.0.1"
authors = ["vx-clutch"]

View File

@@ -0,0 +1,8 @@
local fes = require("fes")
local site = fes.fes()
site.copyright = fes.util.copyright("https://fsd.vxserver.dev", "fSD")
site:h1("Hello, World!")
return site