Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
waghanza committed Nov 9, 2023
1 parent efd6b71 commit 850a205
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 24 deletions.
2 changes: 1 addition & 1 deletion haskell/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ WORKDIR /usr/src/app
COPY '{{source}}' '{{target}}'
{{/files}}

RUN stack build
RUN stack build --system-ghc

FROM debian:stable-slim

Expand Down
4 changes: 2 additions & 2 deletions kotlin/hexagon-jetty/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ sourceCompatibility = 17

kotlin {
jvmToolchain {
languageVersion.set(JavaLanguageVersion.of("17"))
languageVersion.set(JavaLanguageVersion.of("21"))
}
}
}ub

defaultTasks("installDist")

Expand Down
2 changes: 1 addition & 1 deletion kotlin/hexagon-netty-epoll/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ sourceCompatibility = 17

kotlin {
jvmToolchain {
languageVersion.set(JavaLanguageVersion.of("17"))
languageVersion.set(JavaLanguageVersion.of("21"))
}
}

Expand Down
2 changes: 1 addition & 1 deletion kotlin/hexagon-netty/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ sourceCompatibility = 17

kotlin {
jvmToolchain {
languageVersion.set(JavaLanguageVersion.of("17"))
languageVersion.set(JavaLanguageVersion.of("21"))
}
}

Expand Down
2 changes: 1 addition & 1 deletion kotlin/http4k/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ sourceCompatibility = 17

kotlin {
jvmToolchain {
languageVersion.set(JavaLanguageVersion.of("17"))
languageVersion.set(JavaLanguageVersion.of("21"))
}
}

Expand Down
2 changes: 1 addition & 1 deletion kotlin/kooby/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ sourceCompatibility = 17

kotlin {
jvmToolchain {
languageVersion.set(JavaLanguageVersion.of("17"))
languageVersion.set(JavaLanguageVersion.of("21"))
}
}

Expand Down
2 changes: 1 addition & 1 deletion kotlin/ktor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ sourceCompatibility = 17

kotlin {
jvmToolchain {
languageVersion.set(JavaLanguageVersion.of("17"))
languageVersion.set(JavaLanguageVersion.of("21"))
}
}

Expand Down
5 changes: 2 additions & 3 deletions nim/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
FROM nimlang/nim:2.0.0-slim

RUN apk update && \
apk upgrade --no-cache
RUN apt-get -qq update

{{#deps}}
RUN apk --no-cache add {{{.}}}
RUN aot-get -qy install {{{.}}}
{{/deps}}

WORKDIR /usr/src/app
Expand Down
4 changes: 1 addition & 3 deletions nim/basolato/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ framework:

deps:
- gcc
- musl-dev
- bsd-compat-headers
- openssl
- openssh-client
- pcre-dev
- libpcre2-dev

build_command: "ducere build -p 3000"

Expand Down
1 change: 1 addition & 0 deletions php/aplus-app/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ framework:
build_deps:
- libsodium-dev
- libmemcached-dev
- libmemcached11
- libyaml-dev
- libicu-dev
- libpng-dev
Expand Down
2 changes: 1 addition & 1 deletion php/aplus-one/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ framework:

build_deps:
- libsodium-dev
- libmemcached-dev
- libmemcached
- libyaml-dev
- libicu-dev
- libpng-dev
Expand Down
4 changes: 0 additions & 4 deletions ruby/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ WORKDIR /usr/src/app
COPY '{{source}}' '{{target}}'
{{/files}}

RUN apk add build-base {{#deps}}{{{.}}}{{/deps}}



{{#environment}}
ENV {{{.}}}
{{/environment}}
Expand Down
3 changes: 0 additions & 3 deletions ruby/hanami/config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
framework:
website: hanamirb.org
version: 2.0

deps:
- git
2 changes: 1 addition & 1 deletion scala/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{#language.image-version}}
FROM sbtscala/scala-sbt:eclipse-temurin-jammy-21.0.1_12_1.9.78{{{.}}} AS build
FROM sbtscala/scala-sbt:eclipse-temurin-jammy-21.0.1_12_1.9.7_{{{.}}} AS build
{{/language.image-version}}
{{^language.image-version}}
FROM sbtscala/scala-sbt:eclipse-temurin-jammy-21.0.1_12_1.9.7_3.3.1 AS build
Expand Down
2 changes: 1 addition & 1 deletion swift/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM swift:5.9-slim
FROM swift:5.9

RUN apt -y update
RUN apt -y install libssl-dev zlib1g-dev libcurl4-openssl-dev uuid-dev
Expand Down

0 comments on commit 850a205

Please sign in to comment.