Compare commits
3 Commits
pkg/dev/ub
...
987208dd03
Author | SHA1 | Date | |
---|---|---|---|
987208dd03 | |||
03853bdb7a | |||
af0d0ee256 |
1
debian/compat
vendored
1
debian/compat
vendored
@@ -1 +0,0 @@
|
|||||||
9
|
|
14
debian/control
vendored
14
debian/control
vendored
@@ -1,14 +0,0 @@
|
|||||||
Source: fake-sms
|
|
||||||
Section: unknown
|
|
||||||
Priority: optional
|
|
||||||
Maintainer: Cadoles <contact@cadoles.com>
|
|
||||||
Build-Depends: debhelper (>= 8.0.0), wget, ca-certificates, tar, curl
|
|
||||||
Standards-Version: 3.9.4
|
|
||||||
Homepage: http://forge.cadoles.com/Cadoles/fake-sms
|
|
||||||
Vcs-Git: http://forge.cadoles.com/Cadoles/fake-sms.git
|
|
||||||
Vcs-Browser: http://forge.cadoles.com/Cadoles/fake-sms
|
|
||||||
|
|
||||||
Package: fake-sms
|
|
||||||
Architecture: amd64
|
|
||||||
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
||||||
Description: Serveur d'envoi de SMS factice pour le développement avec interface web
|
|
1
debian/fake-sms.dirs
vendored
1
debian/fake-sms.dirs
vendored
@@ -1 +0,0 @@
|
|||||||
var/lib/fake-sms
|
|
11
debian/fake-sms.service
vendored
11
debian/fake-sms.service
vendored
@@ -1,11 +0,0 @@
|
|||||||
[Unit]
|
|
||||||
Description=Serveur d'envoi de SMS factice pour le développement avec interface web
|
|
||||||
After=network-online.target
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
Type=simple
|
|
||||||
ExecStart=/usr/bin/fake-sms -workdir /usr/share/fake-sms -config /etc/fake-sms/config.yml
|
|
||||||
Restart=on-failure
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=multi-user.target
|
|
54
debian/rules
vendored
54
debian/rules
vendored
@@ -1,54 +0,0 @@
|
|||||||
#!/usr/bin/make -f
|
|
||||||
# -*- makefile -*-
|
|
||||||
|
|
||||||
# Uncomment this to turn on verbose mode.
|
|
||||||
export DH_VERBOSE=1
|
|
||||||
|
|
||||||
GO_VERSION := 1.15.6
|
|
||||||
OS := linux
|
|
||||||
ARCH := amd64
|
|
||||||
GOPATH=$(HOME)/go
|
|
||||||
|
|
||||||
ifeq (, $(shell which go 2>/dev/null))
|
|
||||||
override_dh_auto_build: install-go
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq (, $(shell which node 2>/dev/null))
|
|
||||||
override_dh_auto_build: install-nodejs
|
|
||||||
endif
|
|
||||||
|
|
||||||
%:
|
|
||||||
dh $@ --with systemd
|
|
||||||
|
|
||||||
override_dh_auto_build: $(GOPATH)
|
|
||||||
GOPATH=$(GOPATH) PATH="$(PATH):/usr/local/go/bin:$(GOPATH)/bin" make tooling
|
|
||||||
npm install
|
|
||||||
GOPATH=$(GOPATH) PATH="$(PATH):/usr/local/go/bin:$(GOPATH)/bin" go mod vendor
|
|
||||||
GOPATH=$(GOPATH) PATH="$(PATH):/usr/local/go/bin:$(GOPATH)/bin" ARCH_TARGETS=$(ARCH) make release
|
|
||||||
|
|
||||||
$(GOPATH):
|
|
||||||
mkdir -p $(GOPATH)
|
|
||||||
|
|
||||||
install-go:
|
|
||||||
wget https://dl.google.com/go/go$(GO_VERSION).$(OS)-$(ARCH).tar.gz
|
|
||||||
tar -C /usr/local -xzf go$(GO_VERSION).$(OS)-$(ARCH).tar.gz
|
|
||||||
|
|
||||||
install-nodejs:
|
|
||||||
curl -sL https://deb.nodesource.com/setup_14.x | bash -
|
|
||||||
apt-get install -y nodejs
|
|
||||||
|
|
||||||
override_dh_auto_install:
|
|
||||||
mkdir -p debian/fake-sms/usr/share/fake-sms
|
|
||||||
mkdir -p debian/fake-sms/etc/fake-sms
|
|
||||||
mkdir -p debian/fake-sms/usr/bin
|
|
||||||
|
|
||||||
cp -r release/fake-sms-$(OS)-$(ARCH)/* debian/fake-sms/usr/share/fake-sms/
|
|
||||||
|
|
||||||
mv debian/fake-sms/usr/share/fake-sms/bin/fake-sms debian/fake-sms/usr/bin/fake-sms
|
|
||||||
mv debian/fake-sms/usr/share/fake-sms/config.yml debian/fake-sms/etc/fake-sms/config.yml
|
|
||||||
|
|
||||||
install -d debian/fake-sms
|
|
||||||
|
|
||||||
override_dh_strip:
|
|
||||||
|
|
||||||
override_dh_auto_test:
|
|
1
debian/source/format
vendored
1
debian/source/format
vendored
@@ -1 +0,0 @@
|
|||||||
3.0 (native)
|
|
@@ -1,11 +1,11 @@
|
|||||||
FROM golang:1.15 AS build
|
FROM reg.cadoles.com/dh/library/golang:1.17 AS build
|
||||||
|
|
||||||
ARG HTTP_PROXY=
|
ARG HTTP_PROXY=
|
||||||
ARG HTTPS_PROXY=
|
ARG HTTPS_PROXY=
|
||||||
ARG http_proxy=
|
ARG http_proxy=
|
||||||
ARG https_proxy=
|
ARG https_proxy=
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y build-essential git bash curl
|
RUN apt-get update && apt-get install -y build-essential git bash curl python2
|
||||||
|
|
||||||
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - \
|
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - \
|
||||||
&& apt-get install -y nodejs
|
&& apt-get install -y nodejs
|
||||||
@@ -23,12 +23,15 @@ RUN npm install \
|
|||||||
&& echo "---" > ./misc/release/config-patch.yml \
|
&& echo "---" > ./misc/release/config-patch.yml \
|
||||||
&& make ARCH_TARGETS=amd64 release
|
&& make ARCH_TARGETS=amd64 release
|
||||||
|
|
||||||
|
|
||||||
FROM busybox
|
FROM busybox
|
||||||
|
|
||||||
COPY --from=build /src/release/fake-sms-linux-amd64 /app
|
RUN adduser -D -h /app sms
|
||||||
|
|
||||||
|
COPY --from=build /src/release/fake-sms-linux-amd64 /app
|
||||||
|
RUN chown -R sms:sms /app
|
||||||
|
|
||||||
|
USER sms
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
RUN mkdir -p /app
|
|
||||||
|
|
||||||
CMD ["bin/fake-sms", "--config", "config.yml"]
|
CMD ["bin/fake-sms", "--config", "config.yml"]
|
Reference in New Issue
Block a user