Skip to content

Commit

Permalink
Use slim-faststart images from oracle (#6156)
Browse files Browse the repository at this point in the history
Previously, the `fastart` images were used but those are quite big.
Instead, it was suggested to use `slim-faststart` tags.
  • Loading branch information
eddumelendez committed Nov 8, 2022
1 parent 238a97a commit 76d767e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
public class SimpleOracleTest extends AbstractContainerDatabaseTest {

public static final DockerImageName ORACLE_DOCKER_IMAGE_NAME = DockerImageName.parse(
"gvenzl/oracle-xe:21-faststart"
"gvenzl/oracle-xe:21-slim-faststart"
);

private void runTest(OracleContainer container, String databaseName, String username, String password)
Expand Down Expand Up @@ -53,7 +53,7 @@ public void testPluggableDatabase() throws SQLException {
public void testPluggableDatabaseAndCustomUser() throws SQLException {
try (
// constructor {
OracleContainer oracle = new OracleContainer("gvenzl/oracle-xe:21-faststart")
OracleContainer oracle = new OracleContainer("gvenzl/oracle-xe:21-slim-faststart")
.withDatabaseName("testDB")
.withUsername("testUser")
.withPassword("testPassword")
Expand Down

0 comments on commit 76d767e

Please sign in to comment.