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

Add LUET_NOLOCK for example Dockerfile #1651

Merged
merged 2 commits into from
Nov 22, 2022
Merged
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: 2 additions & 1 deletion docs/content/en/docs/Examples/embedded_images.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ FROM registry.suse.com/suse/sle-micro-rancher/5.2
ARG K3S_VERSION=v1.20.4+k3s1
ARG ARCH=amd64
ENV ARCH=${ARCH}
ENV LUET_NOLOCK=true


# Copy the luet config file pointing to the upgrade repository
Expand Down Expand Up @@ -407,4 +408,4 @@ Finally, we start k3s. Note, we could have tweaked that part slightly to provide

## References

You can find the complete example [here](https://github.com/mudler/c3os) where this article was made from.
You can find the complete example [here](https://github.com/mudler/c3os) where this article was made from.
4 changes: 2 additions & 2 deletions examples/scratch/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG LUET_VERSION=0.20.6
ARG LUET_VERSION=0.32.0

FROM quay.io/luet/base:$LUET_VERSION AS luet

Expand All @@ -22,4 +22,4 @@ SHELL ["/bin/sh", "-c"]
RUN rm -rf /var/cache/luet/packages/ /var/cache/luet/repos/

ENV TMPDIR=/tmp
ENTRYPOINT ["/bin/sh"]
ENTRYPOINT ["/bin/sh"]
2 changes: 1 addition & 1 deletion examples/standard/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG LUET_VERSION=0.20.6
ARG LUET_VERSION=0.32.0
FROM quay.io/luet/base:$LUET_VERSION AS luet

FROM quay.io/costoolkit/releases-teal:cos-system-0.8.10-1
Expand Down