Skip to content

Commit 7c247df

Browse files
committedOct 14, 2020
make and push docker container
1 parent 589a457 commit 7c247df

File tree

6 files changed

+1339
-4
lines changed

6 files changed

+1339
-4
lines changed
 

‎.dockerignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*
2+
!./src
3+
!Cargo.toml
4+
!Cargo.lock

‎.github/workflows/build.yml

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
on:
2+
push:
3+
branches:
4+
- 'main'
5+
6+
name: Build
7+
8+
jobs:
9+
test:
10+
name: Test
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout sources
14+
uses: actions/checkout@v1
15+
- name: Install stable toolchain
16+
uses: actions-rs/toolchain@v1
17+
with:
18+
toolchain: stable
19+
override: true
20+
- name: Setup cache
21+
uses: actions/cache@v2
22+
with:
23+
path: |
24+
~/.cargo/registry
25+
~/.cargo/git
26+
target
27+
key: ${{ runner.os }}-test-${{ steps.toolchain.outputs.rustc_hash }}-${{ hashFiles('**/Cargo.lock') }}
28+
- name: Run cargo test
29+
uses: actions-rs/cargo@v1
30+
with:
31+
command: test
32+
github_artifact:
33+
name: Github Artifact
34+
runs-on: ubuntu-latest
35+
needs: test
36+
steps:
37+
- name: Checkout sources
38+
uses: actions/checkout@v1
39+
- name: Install stable toolchain
40+
uses: actions-rs/toolchain@v1
41+
with:
42+
toolchain: stable
43+
override: true
44+
- name: Setup cache
45+
uses: actions/cache@v2
46+
with:
47+
path: |
48+
~/.cargo/registry
49+
~/.cargo/git
50+
target
51+
key: ${{ runner.os }}-release-${{ steps.toolchain.outputs.rustc_hash }}-${{ hashFiles('**/Cargo.lock') }}
52+
- name: Create release build
53+
uses: actions-rs/cargo@v1
54+
with:
55+
command: build
56+
args: --release
57+
- name: upload artifact
58+
uses: actions/upload-artifact@v1
59+
with:
60+
name: GearBot_API
61+
path: target/release/gearbot_api
62+
docker_container:
63+
name: Create Docker Container
64+
runs-on: ubuntu-latest
65+
needs: test
66+
steps:
67+
- name: Checkout sources
68+
uses: actions/checkout@v1
69+
- name: Login to Docker Hub
70+
uses: docker/login-action@v1
71+
with:
72+
username: aenterprise
73+
password: ${{ secrets.DOCKERHUB_TOKEN }}
74+
- name: Build Docker image
75+
run: |
76+
docker build -t gearbot/gearbot_api:latest .
77+
- name: Push container to Docker Hub
78+
run: |
79+
docker push gearbot/gearbot_api:latest

‎.gitignore

-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
# will have compiled files and executables
33
/target/
44

5-
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
6-
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
7-
Cargo.lock
8-
95
# These are backup files generated by rustfmt
106
**/*.rs.bk
117

‎Cargo.lock

+1,240
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ authors = ["AEnterprise <aenterprise@aenterprise.info>", "BlackHoleFox <blackhol
55
edition = "2018"
66

77
[dependencies]
8+
async-tungstenite = { default-features = false, features = ["tokio-runtime"], version = "0.9" }
89
darkredis = "0.7"
910
flexi_logger = { version = "0.15", default-features = false, features = ["colors", "specfile", "ziplogs"] }
1011
futures-util = { version = "0.3", default-features = false }

‎Dockerfile

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM rust:latest as builder
2+
USER root
3+
WORKDIR /compile
4+
RUN mkdir ./src
5+
RUN echo "fn main() {}" > ./src/main.rs
6+
COPY ./Cargo.toml ./Cargo.toml
7+
COPY ./Cargo.lock ./Cargo.lock
8+
RUN cargo build --release
9+
COPY ./src ./src
10+
RUN rm -f ./target/release/deps/gearbot_api*
11+
RUN cargo build --release
12+
FROM debian:buster-slim
13+
WORKDIR /GearBot_api
14+
COPY --from=builder ./compile/target/release/gearbot_api /GearBot_api/gearbot_api
15+
ENTRYPOINT /GearBot_api/gearbot_api

0 commit comments

Comments
 (0)
Please sign in to comment.