diff --git a/Dockerfile b/Dockerfile index 83b52a2..d9698b1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ COPY _vendor /home/_vendor WORKDIR /home RUN bundle install COPY . /home -RUN jekyll build +RUN jekyll build -FROM nginx:1.25.1 +FROM nginx:1.25 COPY --from=builder /home/_site /usr/share/nginx/html diff --git a/LICENSE b/LICENSE index b98f88d..9175481 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,6 @@ MIT License +Copyright (c) 2023 Milk Sad team Copyright (c) 2023 Distrust, LLC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/README.md b/README.md index eb5320b..3e4ad7f 100644 --- a/README.md +++ b/README.md @@ -29,19 +29,19 @@ $ make build $ make serve ``` -### Publish Docker container to Codeberg +### Publish Docker container to Registry -1. Use `docker login` with a Codeberg PAT with write package scope -2. Tag container with Codeberg repo name +1. Use `docker login` with a permission token with write package scope +2. Tag container with repo name ```shell -docker tag milksad-distrust-co codeberg.org/distrust/milksad-distrust-co +docker tag milksad-distrust-co git.distrust.co/milksad/website ``` -3. Push container to Codeberg container registry +3. Push container to container registry ```sh -dockerb push codeberg.org/distrust/milksad-distrust-co +docker push git.distrust.co/milksad/website ```