docker works

This commit is contained in:
2025-12-26 22:07:56 -05:00
parent 73ac756ade
commit c420e2797b
3 changed files with 15 additions and 16 deletions

View File

@@ -1,12 +1,7 @@
FROM fedora:43
RUN curl -fsSL https://git.vxserver.dev/fSD/fports/raw/branch/main/x86_64/fes -o /usr/local/bin/fes \
&& chmod +x /usr/local/bin/fes
WORKDIR /app
FROM fes:latest
COPY . /app
EXPOSE 2100
WORKDIR /app
CMD ["sh", "-c", "/usr/local/bin/fes -p 2100 run ."]
CMD ["fes", "-p", "2100", "run", "/app"]