Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM myoung34/github-runner:2.330.0-ubuntu-jammy
FROM myoung34/github-runner:2.331.0-ubuntu-jammy
ENV YARN_VERSION=1.22.19
ENV DEBIAN_FRONTEND=noninteractive
ENV LANG=C.UTF-8
Expand Down Expand Up @@ -26,15 +26,15 @@
apt-get -y clean && \
rm -rf /var/cache/apt /var/lib/apt/lists/* /tmp/* /var/tmp/*
#FIPS
RUN wget https://www.openssl.org/source/openssl-3.5.0.tar.gz && tar -xzvf openssl-3.5.0.tar.gz

Check failure on line 29 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

DL3047 info: Avoid use of wget without progress bar. Use `wget --progress=dot:giga <url>`. Or consider using `-q` or `-nv` (shorthands for `--quiet` or `--no-verbose`).

Check failure on line 29 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

DL4001 warning: Either use Wget or Curl but not both

RUN cd openssl-3.5.0 && ./config enable-fips enable-ssl-trace && make -j`nproc` && make install

Check failure on line 31 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

DL3003 warning: Use WORKDIR to switch to a directory

Check failure on line 31 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

SC2006 style: Use $(...) notation instead of legacy backticks `...`.
ENV LD_LIBRARY_PATH=/usr/local/lib/:/usr/local/lib64/
RUN openssl fipsinstall -out /usr/local/ssl/fipsmodule.cnf -module /usr/local/lib64/ossl-modules/fips.so

RUN rm /usr/local/ssl/openssl.cnf

Check failure on line 35 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

DL3059 info: Multiple consecutive `RUN` instructions. Consider consolidation.

RUN echo -e "openssl_conf = openssl_init \n\

Check failure on line 37 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

DL3059 info: Multiple consecutive `RUN` instructions. Consider consolidation.
\n\
.include /usr/local/ssl/fipsmodule.cnf \n\
\n\
Expand All @@ -52,7 +52,7 @@
[algorithm_sect] \n\
default_properties = fips=yes" > /usr/local/ssl/openssl.cnf

RUN ln -s /etc/ssl/certs/ca-certificates.crt /usr/local/ssl/cert.pem

Check failure on line 55 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

DL3059 info: Multiple consecutive `RUN` instructions. Consider consolidation.


WORKDIR /actions-runner
Expand Down
Loading