Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
archeoss committed Oct 3, 2023
1 parent 42d785e commit ba64c2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ Bob Management GUI changelog
#### Added

- Initial project structure (#1)
- Dockerfile and Docker-Compose to simplify deployment (#5)
4 changes: 2 additions & 2 deletions dockerfiles/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ RUN echo "fn main() {println!(\"if you see this, the build broke\")}" > backend/
&& echo "fn main() {println!(\"if you see this, the build broke\")}" > frontend/build.rs \
&& echo "fn main() {println!(\"if you see this, the build broke\")}" > cli/src/lib.rs \
&& echo "fn main() {println!(\"if you see this, the build broke\")}" > build.rs \
&& cargo build -p bob_management --features backend --no-default-features --profile=$BUILD_PROFILE --target=$BUILD_TARGET
&& cargo build-backend --profile=$BUILD_PROFILE --target=$BUILD_TARGET

ADD . ./

RUN \
# --mount=type=cache,target=/usr/local/cargo/registry \
# --mount=type=cache,target=/home/root/app/target \
cargo build -p bob_management --features backend --no-default-features --profile=$BUILD_PROFILE --target=$BUILD_TARGET \
cargo build-backend --profile=$BUILD_PROFILE --target=$BUILD_TARGET \
&& mkdir /build_output \
&& cp -f target/$BUILD_TARGET/$BUILD_PROFILE/backend /build_output/backend

Expand Down

0 comments on commit ba64c2f

Please sign in to comment.