Skip to content

Commit

Permalink
Fix issue building CLI tool container image (#83)
Browse files Browse the repository at this point in the history
Signed-off-by: Sergio Castaño Arteaga <[email protected]>
  • Loading branch information
tegioz authored Aug 14, 2023
1 parent 549ca11 commit 3836b3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ FROM rust:1-alpine3.18 as builder
RUN apk --no-cache add musl-dev perl make libconfig-dev openssl-dev yarn
WORKDIR /landscape2
COPY src src
COPY templates templates
COPY web web
COPY build.rs ./
COPY askama.toml ./
Expand Down
2 changes: 1 addition & 1 deletion src/projects.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use chrono::NaiveDate;
use serde::{Deserialize, Serialize};
use std::fs::File;

/// Project information.
/// Project information used to generate the projects.md and projects.csv files.
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize)]
pub(crate) struct Project {
pub accepted_at: String,
Expand Down

0 comments on commit 3836b3f

Please sign in to comment.