-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #436 from carbonblack/release-1.5.0
CBAPI-4818: Release 1.5.0 Merge to Master
- Loading branch information
Showing
118 changed files
with
14,062 additions
and
4,369 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.4.3 | ||
1.5.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from amazonlinux:latest | ||
MAINTAINER [email protected] | ||
FROM amazonlinux:latest | ||
LABEL org.opencontainers.image.authors="[email protected]" | ||
|
||
COPY . /app | ||
WORKDIR /app | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from python:3.10 | ||
MAINTAINER [email protected] | ||
FROM python:3.10 | ||
LABEL org.opencontainers.image.authors="[email protected]" | ||
|
||
COPY . /app | ||
WORKDIR /app | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from python:3.11 | ||
MAINTAINER [email protected] | ||
FROM python:3.11 | ||
LABEL org.opencontainers.image.authors="[email protected]" | ||
|
||
COPY . /app | ||
WORKDIR /app | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM python:3.12 | ||
LABEL org.opencontainers.image.authors="[email protected]" | ||
|
||
COPY . /app | ||
WORKDIR /app | ||
|
||
RUN pip3 install -r requirements.txt |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from python:3.8 | ||
MAINTAINER [email protected] | ||
FROM python:3.8 | ||
LABEL org.opencontainers.image.authors="[email protected]" | ||
|
||
COPY . /app | ||
WORKDIR /app | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from python:3.9 | ||
MAINTAINER [email protected] | ||
FROM python:3.9 | ||
LABEL org.opencontainers.image.authors="[email protected]" | ||
|
||
COPY . /app | ||
WORKDIR /app | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from registry.access.redhat.com/ubi8/ubi:latest | ||
MAINTAINER [email protected] | ||
FROM registry.access.redhat.com/ubi8/ubi:latest | ||
LABEL org.opencontainers.image.authors="[email protected]" | ||
|
||
COPY . /app | ||
WORKDIR /app | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
from opensuse/tumbleweed | ||
MAINTAINER [email protected] | ||
FROM opensuse/tumbleweed | ||
LABEL org.opencontainers.image.authors="[email protected]" | ||
|
||
COPY . /app | ||
WORKDIR /app | ||
|
||
RUN zypper --non-interactive install python3-devel | ||
RUN zypper --non-interactive install python3-pip | ||
RUN zypper --non-interactive install gcc | ||
RUN pip3 install -r requirements.txt | ||
RUN pip3 install . | ||
|
||
RUN python3 -m venv env | ||
RUN source env/bin/activate | ||
|
||
RUN env/bin/pip3 install --break-system-packages -r requirements.txt | ||
RUN env/bin/pip3 install --break-system-packages . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from ubuntu:20.04 | ||
MAINTAINER [email protected] | ||
FROM ubuntu:20.04 | ||
LABEL org.opencontainers.image.authors="[email protected]" | ||
|
||
COPY . /app | ||
WORKDIR /app | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.