Files
sites/fsd.vxserver.dev/Dockerfile
2025-12-22 20:40:01 -05:00

17 lines
349 B
Docker

FROM alpine:3.19
RUN apk add --no-cache bash curl tar gzip build-base
# Install fes CLI
RUN curl -fsSL https://github.com/vxserver/fes/releases/latest/download/fes-linux-amd64 -o /usr/local/bin/fes \
&& chmod +x /usr/local/bin/fes
WORKDIR /app
# Copy site (including archives)
COPY . /app
EXPOSE 2100
CMD ["sh", "-c", "fes run -p 2100 ."]