Compare commits

...

2 Commits

Author SHA1 Message Date
407d220552 changelog 2021-05-02 18:52:35 +02:00
bf8593080b from scratch 2021-05-02 18:50:43 +02:00
3 changed files with 8 additions and 1 deletions

View File

@@ -22,6 +22,7 @@ jobs:
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Login to DockerHub
uses: docker/login-action@v1
with:

View File

@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.0.4] - 2021-05-02
### Added
- From scratch docker image
## [1.0.3] - 2021-05-02
### Fixed

View File

@@ -15,7 +15,7 @@ COPY ./src ./src
RUN cargo build --release
FROM alpine
FROM scratch
WORKDIR /app
COPY --from=RUST /tmp/target/release/cryptgeon .