meetingmind / Dockerfile
GitHub Actions
Deploy f72c569
3846bbc
raw
history blame contribute delete
291 Bytes
FROM ubuntu:24.04
RUN apt-get update && apt-get install -y ca-certificates libstdc++6 libssl3t64 && rm -rf /var/lib/apt/lists/*
RUN useradd -m -o -u 1000 app
USER 1000
WORKDIR /home/app
COPY orchestrator ./orchestrator
COPY static/ ./static/
ENV PORT=7860
EXPOSE 7860
CMD ["./orchestrator"]