Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Remove request pkg #26

Closed
wants to merge 3 commits into from
Closed
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: 1 addition & 2 deletions as-file-receiver-oem/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
#build stage
FROM golang:1.19-alpine3.16 AS builder

RUN sed -e 's/dl-cdn[.]alpinelinux.org/dl-4.alpinelinux.org/g' -i~ /etc/apk/repositories && \
apk add --update --no-cache make=4.3-r0 gcc=11.2.1_git20220219-r2 libc-dev=0.7.2-r3 libsodium-dev=1.0.18-r0 \
RUN apk add --update --no-cache make=4.3-r0 gcc=11.2.1_git20220219-r2 libc-dev=0.7.2-r3 libsodium-dev=1.0.18-r0 \
zeromq-dev=4.3.4-r0
WORKDIR /app

Expand Down
3 changes: 1 addition & 2 deletions as-file-sender-gateway/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
# build stage
FROM golang:1.19-alpine3.16 AS builder

RUN sed -e 's/dl-cdn[.]alpinelinux.org/dl-4.alpinelinux.org/g' -i~ /etc/apk/repositories && \
apk add --update --no-cache make=4.3-r0 gcc=11.2.1_git20220219-r2 libc-dev=0.7.2-r3 libsodium-dev=1.0.18-r0 zeromq-dev=4.3.4-r0
RUN apk add --update --no-cache make=4.3-r0 gcc=11.2.1_git20220219-r2 libc-dev=0.7.2-r3 libsodium-dev=1.0.18-r0 zeromq-dev=4.3.4-r0
WORKDIR /app

COPY go.mod ./
Expand Down
3 changes: 1 addition & 2 deletions as-pipeline-sim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
#build stage
FROM golang:1.19-alpine3.16 AS builder

RUN sed -e 's/dl-cdn[.]alpinelinux.org/dl-4.alpinelinux.org/g' -i~ /etc/apk/repositories && \
apk add --update --no-cache make=4.3-r0 gcc=11.2.1_git20220219-r2 libc-dev=0.7.2-r3 libsodium-dev=1.0.18-r0 zeromq-dev=4.3.4-r0
RUN apk add --update --no-cache make=4.3-r0 gcc=11.2.1_git20220219-r2 libc-dev=0.7.2-r3 libsodium-dev=1.0.18-r0 zeromq-dev=4.3.4-r0
WORKDIR /app

COPY go.mod ./
Expand Down
3 changes: 1 addition & 2 deletions as-pipeline-val/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
# build stage
FROM golang:1.19-alpine3.16 AS builder

RUN sed -e 's/dl-cdn[.]alpinelinux.org/dl-4.alpinelinux.org/g' -i~ /etc/apk/repositories && \
apk add --update --no-cache make=4.3-r0 gcc=11.2.1_git20220219-r2 libc-dev=0.7.2-r3 libsodium-dev=1.0.18-r0 zeromq-dev=4.3.4-r0
RUN apk add --update --no-cache make=4.3-r0 gcc=11.2.1_git20220219-r2 libc-dev=0.7.2-r3 libsodium-dev=1.0.18-r0 zeromq-dev=4.3.4-r0
WORKDIR /app

COPY go.mod ./
Expand Down
3 changes: 1 addition & 2 deletions as-task-launcher/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
# build stage
FROM golang:1.19-alpine3.16 AS builder

RUN sed -e 's/dl-cdn[.]alpinelinux.org/dl-4.alpinelinux.org/g' -i~ /etc/apk/repositories && \
apk add --update --no-cache make=4.3-r0 gcc=11.2.1_git20220219-r2 libc-dev=0.7.2-r3 libsodium-dev=1.0.18-r0 zeromq-dev=4.3.4-r0
RUN apk add --update --no-cache make=4.3-r0 gcc=11.2.1_git20220219-r2 libc-dev=0.7.2-r3 libsodium-dev=1.0.18-r0 zeromq-dev=4.3.4-r0
WORKDIR /app

COPY go.mod ./
Expand Down
4 changes: 2 additions & 2 deletions geti-pipeline/example_code/demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ def do_POST(self):

# Step 5: Visualization
show_image_with_annotation_scene(image_rgb, prediction, filepath=jsonObj["OutputFileFolder"], show_results=False )
except:
except Exception as e:
self.send_response(500)
self._send_cors_headers()
print("An error ocurred while processing pipeline")
print("An error ocurred while processing pipeline: {}".format(e))
self.end_headers()
return

Expand Down
3 changes: 2 additions & 1 deletion geti-pipeline/example_code/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Base requirements for the deployment
geti-sdk @ https://api.github.com/repos/openvinotoolkit/geti-sdk/tarball/releases/v1.0.x
geti-sdk==1.5.8
opencv-python>=4.5.0
3 changes: 1 addition & 2 deletions ms-data-organizer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
#build stage
FROM golang:1.19-alpine3.16 AS builder

RUN sed -e 's/dl-cdn[.]alpinelinux.org/dl-4.alpinelinux.org/g' -i~ /etc/apk/repositories && \
apk add --update --no-cache make=4.3-r0 gcc=11.2.1_git20220219-r2 libc-dev=0.7.2-r3 libsodium-dev=1.0.18-r0 \
RUN apk add --update --no-cache make=4.3-r0 gcc=11.2.1_git20220219-r2 libc-dev=0.7.2-r3 libsodium-dev=1.0.18-r0 \
zeromq-dev=4.3.4-r0
WORKDIR /app

Expand Down
3 changes: 1 addition & 2 deletions ms-file-receiver-gateway/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
########################################################################
FROM golang:1.19-alpine3.16 AS builder

RUN sed -e 's/dl-cdn[.]alpinelinux.org/dl-4.alpinelinux.org/g' -i~ /etc/apk/repositories && \
apk add --update --no-cache make=4.3-r0 gcc=11.2.1_git20220219-r2 libc-dev=0.7.2-r3 libsodium-dev=1.0.18-r0 zeromq-dev=4.3.4-r0
RUN apk add --update --no-cache make=4.3-r0 gcc=11.2.1_git20220219-r2 libc-dev=0.7.2-r3 libsodium-dev=1.0.18-r0 zeromq-dev=4.3.4-r0
WORKDIR /app

COPY go.mod ./
Expand Down
3 changes: 1 addition & 2 deletions ms-file-sender-oem/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
#build stage
FROM golang:1.19-alpine3.16 AS builder

RUN sed -e 's/dl-cdn[.]alpinelinux.org/dl-4.alpinelinux.org/g' -i~ /etc/apk/repositories && \
apk add --update --no-cache make=4.3-r0 gcc=11.2.1_git20220219-r2 libc-dev=0.7.2-r3 libsodium-dev=1.0.18-r0 \
RUN apk add --update --no-cache make=4.3-r0 gcc=11.2.1_git20220219-r2 libc-dev=0.7.2-r3 libsodium-dev=1.0.18-r0 \
zeromq-dev=4.3.4-r0
# dumb-init is required as security-bootstrapper uses it in the entrypoint script
WORKDIR /app
Expand Down
3 changes: 1 addition & 2 deletions ms-file-watcher/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
#build stage
FROM golang:1.19-alpine3.16 AS builder

RUN sed -e 's/dl-cdn[.]alpinelinux.org/dl-4.alpinelinux.org/g' -i~ /etc/apk/repositories && \
apk add --update --no-cache make=4.3-r0 gcc=11.2.1_git20220219-r2 libc-dev=0.7.2-r3 libsodium-dev=1.0.18-r0 \
RUN apk add --update --no-cache make=4.3-r0 gcc=11.2.1_git20220219-r2 libc-dev=0.7.2-r3 libsodium-dev=1.0.18-r0 \
zeromq-dev=4.3.4-r0
WORKDIR /app

Expand Down
3 changes: 1 addition & 2 deletions ms-job-repository/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
########################################################################
FROM golang:1.19-alpine3.16 AS builder

RUN sed -e 's/dl-cdn[.]alpinelinux.org/dl-4.alpinelinux.org/g' -i~ /etc/apk/repositories && \
apk add --update --no-cache make=4.3-r0 gcc=11.2.1_git20220219-r2 libc-dev=0.7.2-r3 libsodium-dev=1.0.18-r0 zeromq-dev=4.3.4-r0
RUN apk add --update --no-cache make=4.3-r0 gcc=11.2.1_git20220219-r2 libc-dev=0.7.2-r3 libsodium-dev=1.0.18-r0 zeromq-dev=4.3.4-r0
WORKDIR /app

COPY go.mod ./
Expand Down
93 changes: 0 additions & 93 deletions ms-web-ui/package-lock.json

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

Loading