Skip to content
Merged
Show file tree
Hide file tree
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: 8 additions & 0 deletions .devcontainer/Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM rust:1-alpine3.18

ENV CARGO_BUILD_TARGET=x86_64-unknown-linux-musl

RUN apk update && \
apk add bash musl-dev shadow && \
# Add a user for floki using the shadow utils
useradd -Um -s /bin/bash floki
5 changes: 5 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"name": "floki",
"build": { "dockerfile": "Dockerfile.alpine" },
"remoteUser": "floki"
}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Status: Available for use
- Add `toml` function to tera templating engine so that floki templates
can use `toml(file="<filepath>")` in order to load values.
- Add `floki render` to print out the rendered configuration template.
- Switch rust image to `rust:1-alpine3.18` as it's better maintained.

### Fixed

Expand Down
Loading