Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions release.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,13 @@ COPY convoy /cmd
# Copy the migrations directory
COPY sql/ /sql/

# Copy the startup script
COPY configs/local/start.sh /start.sh

# Set permissions
RUN chmod +x /cmd /start.sh
RUN chmod +x /cmd

# Install necessary dependencies
RUN apk add --no-cache gcompat

# Set the startup command
CMD ["/start.sh"]
ENTRYPOINT ["/cmd"]
CMD ["server", "--config", "convoy.json"]

Loading