Skip to content
This repository has been archived by the owner on Feb 14, 2021. It is now read-only.

Prepare for release v0.2.0 #5

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
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
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.git
.github
target
16 changes: 16 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Docker

on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
check:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: test docker build
run: docker build .
2 changes: 1 addition & 1 deletion .github/workflows/publish-doc.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: github pages
name: Github Pages

on:
push:
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.42.0 as builder
FROM rust:1.44.0-slim as builder
LABEL maintainer "Advanca Authors"
LABEL description="This is the build stage for advanca-node"

Expand All @@ -16,7 +16,7 @@ RUN rustup toolchain install nightly && \

# ===== SECOND STAGE ======

FROM rust:1.42.0
FROM rust:1.44.0-slim
LABEL maintainer "Advanca Authors"
LABEL description="This is the 2nd stage"

Expand Down