1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00
This commit is contained in:
Steffen Vogel 2021-02-16 14:42:05 +01:00
parent 12589345ce
commit 1250a127ed
3 changed files with 3 additions and 2 deletions

View file

@ -216,6 +216,7 @@ pkg:alpine:
- docker login -u ${CI_REGISTRY_USER} -p ${CI_REGISTRY_PASSWORD} ${CI_REGISTRY}
script:
- docker buildx build ${DOCKER_OPTS}
--pull
--output type=docker
--target app
--build-arg ARCH=${ARCH}

View file

@ -43,7 +43,7 @@ public:
int openSocket();
int closeSocket();
void writeData(uint len, double *yData, double *xData = nullptr);
void writeData(unsigned len, double *yData, double *xData = nullptr);
};
} /* namespace node */

View file

@ -28,7 +28,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
###################################################################################
FROM alpine:edge AS dev
FROM alpine:3.13.1 AS dev
ARG DISTRO=alpine
ARG ARCH=x86_64