Skip to content

Commit

Permalink
dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
skull8888888 committed Dec 30, 2024
1 parent d9a36aa commit 4d01fcb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,14 @@ WORKDIR /app-server
RUN apt-get update && apt-get install -y \
libssl1.1 \
libfontconfig1 \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*

COPY --from=builder /app-server/target/release/app-server .
# Copy data files for name generation
COPY data/ /app-server/data/

EXPOSE 8000
EXPOSE 8001

CMD ["./app-server"]
CMD ["./app-server"]

0 comments on commit 4d01fcb

Please sign in to comment.