Compare commits
5 Commits
7d8722d995
...
main
Author | SHA1 | Date | |
---|---|---|---|
a428846708
|
|||
3ab2bb4c1f
|
|||
34f9ca51b7 | |||
f56817f753 | |||
08a6b4dda7
|
9
.drone.yml
Executable file
9
.drone.yml
Executable file
@@ -0,0 +1,9 @@
|
||||
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: "test"
|
||||
steps:
|
||||
- name: test
|
||||
image: harbor.front.kjuulh.io/docker-proxy/library/bash:latest
|
||||
commands:
|
||||
- echo 'Run tests'
|
3
renovate.json
Normal file
3
renovate.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
|
||||
}
|
@@ -1,11 +1,7 @@
|
||||
FROM rust:1.62.1-slim-buster
|
||||
|
||||
RUN apt-get update && apt-get upgrade -y
|
||||
RUN apt-get install libssl-dev
|
||||
RUN apt-get install -y -q build-essential curl
|
||||
FROM golang
|
||||
|
||||
COPY . .
|
||||
|
||||
RUN cargo build
|
||||
RUN go build cmd/main.go
|
||||
|
||||
CMD [ "cargo", "run" ]
|
||||
CMD [ "main" ]
|
||||
|
@@ -1,2 +1,2 @@
|
||||
target/
|
||||
.cuddle/
|
||||
main/
|
||||
|
Reference in New Issue
Block a user