Skip to content

Commit

Permalink
Staging v0.2.0
Browse files Browse the repository at this point in the history
* Update config pkg
* Update Dockerfile
* Update docker-compose.yaml
* Upgrade model v0.0.3
* Ignore *.db and container-volume
  • Loading branch information
yunkon-kim committed Oct 30, 2024
1 parent 14ded09 commit d1a99c1
Show file tree
Hide file tree
Showing 16 changed files with 868 additions and 773 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,6 @@
cmd/cm-damselfly/cm-damselfly

# Ignore DB file (it's temporally used)
db/*
*.db

container-volume/
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ RUN rm /bin/sh && ln -s /bin/bash /bin/sh
# Set the Current Working Directory inside the container
WORKDIR /app

# Installing necessary packages and cleaning up
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# # Installing necessary packages and cleaning up
# RUN apt-get update && apt-get install -y --no-install-recommends \
# ca-certificates \
# && apt-get clean \
# && rm -rf /var/lib/apt/lists/*

## Copy the Pre-built binary and necessary files from the previous stage
COPY --from=builder /go/src/github.com/cloud-barista/cm-damselfly/api/ /app/api/
Expand Down
Loading

0 comments on commit d1a99c1

Please sign in to comment.